home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / StormAmigalib / stormamiga_lib / Include / sys / times.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  679 b   |  37 lines

  1. #ifndef SYS_TIMES_H
  2. #define SYS_TIMES_H
  3.  
  4. /*
  5. **       $VER: sys/times.h 1.2 (18.09.98)
  6. **            Includes Release 44.10
  7. **
  8. **     Copyright © 1996/98 by CyberdyneSystems
  9. **
  10. **            written by Matthias Henze
  11. **               All Rights Reserved
  12. */
  13.  
  14. #ifndef _INCLUDE_TIME_H
  15.   #include <time.h>
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19.   extern "C" {
  20. #endif
  21.  
  22. struct tms
  23. {
  24.   clock_t tms_utime;  /* User CPU time */
  25.   clock_t tms_stime;  /* System CPU time */
  26.   clock_t tms_cutime; /* User CPU time of terminated child procs */
  27.   clock_t tms_cstime; /* System CPU time of terminated child procs */
  28. };
  29.  
  30. clock_t times (struct tms *);
  31.  
  32. #ifdef __cplusplus
  33.   }
  34. #endif
  35.  
  36. #endif /* SYS_TIMES_H */
  37.